Skip to main content
ICT
Lesson A3 - Primitive Data Types
 
Main Previous Next
Title Page >  
Summary >  
Lesson A1 >  
Lesson A2 >  
Lesson A3 >  
Lesson A4 >  
Lesson A5 >  
Lesson A6 >  
Lesson A7 >  
Lesson A8 >  
Lesson A9 >  
Lesson A10 >  
Lesson A11 >  
Lesson A12 >  
Lesson A13 >  
Lesson A14 >  
Lesson A15 >  
Lesson A16 >  
Lesson A17 >  
Lesson A18 >  
Lesson A19 >  
Lesson A20 >  
Lesson A21 >  
Lesson A22 >  
Lesson AB23 >  
Lesson AB24 >  
Lesson AB25 >  
Lesson AB26 >  
Lesson AB27 >  
Lesson AB28 >  
Lesson AB29 >  
Lesson AB30 >  
Lesson AB31 >  
Lesson AB32 >  
Lesson AB33 >  
Vocabulary >  
 

D. Printing Variables Using the System.out Object page 6 of 14

  1. The System.out object is automatically created in every Java program. It has methods for displaying text strings and numbers in plain text format on the system display, which is sometimes referred to as the “console.” For example:

  2. Code Sample 3-2

  1. Method System.out.println displays (or prints) a line of text in the console window. When System.out.println completes its task, it automatically positions the output cursor (the location where the next character will be displayed) to the beginning of the next line in the console window (this is similar to pressing the Enter key when typing in a text editor-the cursor is repositioned at the beginning of the next line).

  2. The expression

"number = " + number

from the statement

System.out.println("number = " + number);

uses the + operator to “add” a string (the literal "number = ") and number (the int variable containing the number 5). Java defines a version of the + operator for String concatenation that enables a string and a value of another data type to be concatenated (added). The result of this operation is a new (and normally longer) String. String concatenation is discussed in more detail later on.

  1. The lines

System.out.print("The ");
System.out.println("End!");

of Code Sample 3-2 display one line in the console window. The first statement uses System.out’s method, print, to display a string. Unlike println, print does not position the output cursor at the beginning of the next line in the console window after displaying its argument. The next character displayed in the console window appears immediately after the last character displayed with print.

  1. Note the distinction between sending a String literal, "number = ", versus a variable, number, to the System.out object. A boolean variable will be printed as true or false.

  2. The result (or output) of formulas using Strings may also be printed. Note how the placement of the quotes affects the output.

 

Main Previous Next
Contact
 © ICT 2006, All Rights Reserved.